Categories

Versions

Delete Model (OpenAI) (Generative Models)

Synopsis

Deletes an OpenAI model with the given ID

Description

Deletes an OpenAI model with the given ID. This can only be used for models which are owned by the specified organization. You can see all available models in the OpenAI playground or by using the Get Models operator. You can also fetch the model ID with the Check Job Status operator based on a finetuning job ID. Please note that deleting a model cannot be reverted. The operator will deliver a data set containing information about the deletion status.

Input

  • connection (Connection)

    A Dictionary Connection providing the API key as a key value pair with a key named 'api_key'.

Output

  • data (Data Table)

    A data set describing the deletion status.

  • connection (Connection)

    The input connection.

Parameters

  • model_id The ID of the model to be deleted. You can see your models in the OpenAI playground or with the Get Models operator. Range:
  • conda_environment The conda environment used for this downloading task. Additional packages may be installed into this environment, please refer to the extension documentation for additional details on this and on version requirements for Python and some packages which have be present in this environment. Range:

Tutorial Processes

Deleting a previously finetuned model from OpenAI

This operator simply deleted a model with the given model ID from your OpenAI space. You can retrieve the model ID either with the Check Job Status operator based on a finetuning job ID (which is the result of the finetuning operator). Or you can use the Get Models operator to get the information about all the models which have been finetuned by your organization. IMPORTANT: Please note that you will need your API key provided as a Dictionary Connection to make this process work. You will also need a valid model ID.